1
Fundamental Rules and the Product Property
MATH004 Lesson 5
00:00

The determinant is more than just a number; it is a unique scalar function of a square matrix that characterizes its geometric "expansion factor" and its algebraic invertibility. By understanding the core rules governing products and transposes, we can deconstruct complex transformations into simple arithmetic steps.

The Power of the Product Property

Perhaps the most profound result in determinant theory is the Product Rule:

$$\det(AB) = \det(A)\det(B)$$

This identity tells us that the volume scaling of a sequence of transformations is simply the product of their individual scaling factors. From this, we derive immediate consequences for inverses:

Since $A A^{-1} = I$, it follows that $\det(A A^{-1}) = \det(I) = 1$.

By the product rule: $\det(A) \cdot \det(A^{-1}) = 1$.

Therefore, for any invertible matrix: $\det(A^{-1}) = \frac{1}{\det A}$.

Symmetry and Orthogonality

Rule 10 states that $\det A = \det A^T$. This creates a perfect symmetry between rows and columns. Any property we prove regarding row exchanges or linear combinations of rows applies identically to columns. This leads us to the special case of Orthogonal Matrices ($Q$):

  • An orthogonal matrix satisfies $Q^T Q = I$.
  • By the product rule: $\det(Q^T) \det(Q) = \det(I) = 1$.
  • Since $\det Q^T = \det Q$, we have $(\det Q)^2 = 1$.
  • Conclusion: $\det Q = 1$ (rotation) or $\det Q = -1$ (reflection).

The Non-Linearity Warning

It is vital to remember that the determinant is not a linear map. While $f(A+B) = f(A) + f(B)$ is true for linear operators, it is generally false for determinants:

$$\det(A+B) \neq \det A + \det B$$

Furthermore, scaling a matrix by $k$ results in $\det(kA) = k^n \det A$ for an $n \times n$ matrix, because $k$ scales every one of the $n$ rows.

๐ŸŽฏ Core Formulas
  • $\det(AB) = \det(A)\det(B)$
  • $\det(A^T) = \det A$
  • $\det(kA) = k^n \det A$
  • $\det(A^{-1}) = 1/\det A$